6d0e01cfec6f336a3d52ff6dfc00f4f7c57fdf49,karaf/admin/core/src/main/java/org/apache/felix/karaf/admin/internal/InstanceImpl.java,InstanceImpl,stop,#,168

Before Change


        if (this.process == null) {
            throw new IllegalStateException("Instance not started");
        }
        this.process.destroy();
    }

    public synchronized void destroy() throws Exception {

After Change


        }
        // Try a clean shutdown
        cleanShutdown();
        if (this.process != null) {
            this.process.destroy();
        }
    }